Show AllShow All

Copy Method

ShowCopy method as it applies to the ChartArea object.

ShowCopy method as it applies to the Range object.

Example

This example copies the formulas in cells A1:D4 on the datasheet into cells E5:H8.

Set mySheet = myChart.Application.DataSheet
mySheet.Range("A1:D4").Copy _
    Destination:= mySheet.Range("E5")